Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
RasterTagMetadata Constructor(Int32,RasterTagMetadataDataType,Byte[])
See Also 
Leadtools Namespace > RasterTagMetadata Class > RasterTagMetadata Constructor : RasterTagMetadata Constructor(Int32,RasterTagMetadataDataType,Byte[])




id
The tag id
dataType
The data type of the tag
data
The data for the tag
Initializes a new instance of RasterTagMetadata with the specified values.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal id As Integer, _
   ByVal dataType As RasterTagMetadataDataType, _
   ByVal data() As Byte _
)
Visual Basic (Usage)Copy Code
Dim id As Integer
Dim dataType As RasterTagMetadataDataType
Dim data() As Byte
 
Dim instance As RasterTagMetadata(id, dataType, data)
C# 
public RasterTagMetadata( 
   int id,
   RasterTagMetadataDataType dataType,
   byte[] data
)
Managed Extensions for C++ 
public: RasterTagMetadata( 
   int id,
   RasterTagMetadataDataType dataType,
   byte[]* data
)
C++/CLI 
public:
RasterTagMetadata( 
   int id,
   RasterTagMetadataDataType dataType,
   array<byte>^ data
)

Parameters

id
The tag id
dataType
The data type of the tag
data
The data for the tag

Example

For an example, refer to RasterTagMetadata.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also